home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / bbs / dao23a.zip / MAKEISO.TXT < prev    next >
Text File  |  1996-09-14  |  3KB  |  104 lines

  1.  
  2.               MAKEISO.EXE - ISO9660 Image File Formatter
  3.  
  4.  
  5. >>> PROGRAM DESCRIPTION <<<
  6.  
  7.     MAKEISO.EXE will build an ISO9660 compatible image file from one
  8. or more data files. This image file can then be recorded onto a CD-R
  9. disc with either FILE2CD.EXE or DAO.EXE.
  10.  
  11. ***********************************************************************
  12.  
  13. >>> COMMAND LINE USAGE <<<
  14.  
  15. Usage: MAKEISO [drive:][path]<filename> <imagefile>
  16.          [/HIDDEN] [/VOLUME=label]
  17. filename  - Input filename (wildcards allowed)
  18. imagefile - Output ISO9660 image filename
  19. /HIDDEN   - Process hidden files
  20. /VOLUME   - Volume label (maximum 32 characters)
  21. e.g. MAKEISO *.DOC TEST.ISO
  22. e.g. MAKEISO C:\TEST\*.* TEST.ISO /HIDDEN /VOLUME=MY_FILES
  23.  
  24.   The first 11 characters of the volume label will be returned as
  25. the volume label from all DOS/Windows system calls and utilities.
  26.  
  27.   For fastest speed, the output image file should be written to a
  28. different harddrive than the source files are on. This will eliminate
  29. the head movement between reading the input files and writing the
  30. output file.
  31.  
  32. ***********************************************************************
  33.  
  34. >>> CURRENT RESTRICTIONS <<<
  35.  
  36.   The currect version of MAKEISO will only process one directory of
  37. files. It will not recurse through any subdirectories.
  38.  
  39. ***********************************************************************
  40.  
  41. >>> HOW TO USE MAKEISO <<<
  42.  
  43.   The following examples will show you how to create an ISO9660
  44. compatible CD with either FILE2CD.EXE or DAO.EXE.
  45.  
  46. EXAMPLE 1: Create an ISO9660 compatible CD with FILE2CD.EXE
  47.  
  48.   1) MAKEISO C:\TEST\*.* TEST.ISO /VOLUME=MY_FILES
  49.   
  50.   2) FILE2CD TEST.ISO /ISO9660
  51.  
  52. ========================================================================
  53.  
  54. EXAMPLE 2: Create an ISO9660 compatible CD with DAO.EXE
  55. (for all recorders *except* Philips/HP).
  56.  
  57.   1) MAKEISO C:\TEST\*.* TEST.ISO /VOLUME=MY_FILES
  58.   
  59.   2) Write a CUE SHEET called TEST.CUE that contains the following...
  60.     
  61.     FILE TEST.ISO MODE1 2048
  62.       TRACK 01
  63.       INDEX 01 00:00:00
  64.       POSTGAP
  65.  
  66.   3) DAO TEST.CUE
  67.  
  68. ========================================================================
  69.  
  70. EXAMPLE 3: Create an ISO9660 compatible CD using DAO.EXE
  71. (for Philips/HP recorders only!)
  72.  
  73.   1) MAKEISO C:\TEST\*.* TEST.ISO /VOLUME=MY_FILES
  74.   
  75.   2) ISO2RAW TEST.ISO TEST.RAW
  76.  
  77.   3) Write a CUE SHEET called TEST.CUE that contains the following...
  78.     
  79.     FILE TEST.RAW MODE1 2352
  80.       TRACK 01
  81.       INDEX 01 00:00:00
  82.       POSTGAP
  83.  
  84.   4) DAO TEST.CUE
  85.  
  86. **********************************************************************
  87.  
  88. Please send all suggestions, comments, and bug reports to...
  89.  
  90. Jeff Arnold
  91. 125 Indian Rock Road
  92. Merrimack, NH 03054
  93.  
  94. Phone: 603-424-0269
  95. FAX  : 603-429-0073
  96.  
  97. URL  : http://www.mainstream.net/goldenhawk
  98. EMAIL: jarnold@mainstream.net
  99.  
  100. **********************************************************************
  101.  
  102. Updated on SEPTEMBER 1, 1996
  103.  
  104.